home *** CD-ROM | disk | FTP | other *** search
/ Top 102 Games / Top 102 Games.iso / play / battledr / start.bat < prev    next >
DOS Batch File  |  1995-07-28  |  491b  |  23 lines

  1. cls
  2. echo off
  3. echo This file will copy the game BATTLE DROME to your 'C' hard disk.
  4. echo It will require 9 MEG's of Hard Drive space.
  5. echo After you run it, you will be given the option of removing it from your
  6. echo hard drive. Just answer 'yes' to the delete question.
  7. echo   
  8. choice /c:yn Go ahead with the copy to hard drive?
  9. if errorlevel 2 goto end
  10. if errorlevel 1 goto copy
  11. goto end
  12.  
  13. :copy
  14. xcopy *.* c:\battledr\ /s
  15. c:
  16. cd \battledr
  17. bd
  18.  
  19. cd..
  20. deltree battledr
  21.  
  22. :end
  23.